Trying out mkalias from osxutils 1.7
[adiumx.git] / Plugins / WebKit Message View / JVFontPreviewField.h
blob679f6b55e8951bf6cde781ef2f5fdccc379185ac
1 // From Colloquy (http://colloquy.info/)
3 #import <AppKit/NSTextField.h>
5 @class NSFont;
7 @interface JVFontPreviewField : NSTextField {
8 NSFont *_actualFont;
9 BOOL _showPointSize;
10 BOOL _showFontFace;
12 - (void)selectFont:(id)sender;
13 - (IBAction)chooseFontWithFontPanel:(id)sender;
14 - (void)setShowPointSize:(BOOL)show;
15 - (void)setShowFontFace:(BOOL)show;
16 @end
18 @interface NSObject (JVFontPreviewFieldDelegate)
19 - (BOOL)fontPreviewField:(JVFontPreviewField *)field shouldChangeToFont:(NSFont *)font;
20 - (void)fontPreviewField:(JVFontPreviewField *)field didChangeToFont:(NSFont *)font;
21 @end